The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
Changes 019
META.json 11
META.yml 11
Makefile.PL 11
README 11
bin/patchperl 11
dist.ini 11
lib/Devel/PatchPerl/Hints.pm 22
lib/Devel/PatchPerl.pm 33
9 files changed (This is a version diff) 1130
@@ -1,4 +1,23 @@
 ==============================
+2011-05-14 10:07:23 +0100 0.36
+==============================
+
+  commit 9adaa25602a33f3946c2e0108c4e433d91a7ebcf
+  Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
+  Date:   Sat May 14 10:07:23 2011 +0100
+  
+    chmod of hints files was too aggressive, make it only set 644 instead
+    of 755.
+
+    The 5.13.x branch of perls introduced 'porting/exec-bit.t' which is
+    failing
+
+    when files that shouldn't have execute bit in the source tree do.
+
+    Highlighted by Randy Stauner (magnificent-tears) as an issue on
+    Github. 
+
+==============================
 2011-05-11 09:16:15 +0100 0.34
 ==============================
 
@@ -38,6 +38,6 @@
          "web" : "http://github.com/bingos/devel-patchperl"
       }
    },
-   "version" : "0.34"
+   "version" : "0.36"
 }
 
@@ -21,4 +21,4 @@ requires:
 resources:
   homepage: http://github.com/bingos/devel-patchperl
   repository: http://github.com/bingos/devel-patchperl
-version: 0.34
+version: 0.36
@@ -27,7 +27,7 @@ my %WriteMakefileArgs = (
     'IPC::Cmd' => '0.40',
     'MIME::Base64' => '0'
   },
-  'VERSION' => '0.34',
+  'VERSION' => '0.36',
   'test' => {
     'TESTS' => 't/*.t'
   }
@@ -2,7 +2,7 @@ NAME
     Devel::PatchPerl - Patch perl source a la Devel::PPort's buildperl.pl
 
 VERSION
-    version 0.34
+    version 0.36
 
 SYNOPSIS
       use strict;
@@ -19,7 +19,7 @@ patchperl - patch a perl source tree
 
 =head1 VERSION
 
-version 0.34
+version 0.36
 
 =head1 AUTHOR
 
@@ -1,5 +1,5 @@
 name = Devel-PatchPerl
-version = 0.34
+version = 0.36
 author = Chris Williams <chris@bingosnet.co.uk>
 license = Perl_5
 copyright_holder = Chris Williams and Marcus Holland-Moritz
@@ -1,6 +1,6 @@
 package Devel::PatchPerl::Hints;
 BEGIN {
-  $Devel::PatchPerl::Hints::VERSION = '0.34';
+  $Devel::PatchPerl::Hints::VERSION = '0.36';
 }
 
 #ABSTRACT: replacement 'hints' files
@@ -661,7 +661,7 @@ Devel::PatchPerl::Hints - replacement 'hints' files
 
 =head1 VERSION
 
-version 0.34
+version 0.36
 
 =head1 SYNOPSIS
 
@@ -1,6 +1,6 @@
 package Devel::PatchPerl;
 BEGIN {
-  $Devel::PatchPerl::VERSION = '0.34';
+  $Devel::PatchPerl::VERSION = '0.36';
 }
 
 # ABSTRACT: Patch perl source a la Devel::PPort's buildperl.pl
@@ -223,7 +223,7 @@ sub _determine_version {
 sub _patch_hints {
   return unless my ($file,$data) = hint_file();
   my $path = File::Spec->catfile( 'hints', $file );
-  chmod 0755, $path or die "$!\n";
+  chmod 0644, $path or die "$!\n";
   open my $fh, '>', $path or die "$!\n";
   print $fh $data;
   close $fh;
@@ -1722,7 +1722,7 @@ Devel::PatchPerl - Patch perl source a la Devel::PPort's buildperl.pl
 
 =head1 VERSION
 
-version 0.34
+version 0.36
 
 =head1 SYNOPSIS